home *** CD-ROM | disk | FTP | other *** search
- #ifndef TSTRING_INCLUDE
- #define TSTRING_INCLUDE 1
- static char SCCS_TSTRING_INCLUDE[] = "@(#)tstring.h 1.1 2/15/94 10:38:14";
- /*+++
-
- tstring.h
-
- PURPOSE : definition of tstring class
-
- DATE : Sun Jan 30 17:15:53 EST 1994
-
- AUTHOR : W. Hatch
-
- PROJECT : Jasper Pink
-
- COMPANY : Coleman Research Corporation
- 9891 Broken Land Parkway
- Suite 200
- Columbia, Maryland 21045
- Phone (301)621-8600
- FAX (410)7210
-
- ---*/
- /*
- ------------------------------------------------------------------------
- MODIFICATIONS
- DATE-PROGRAMMER DESCRIPTION
- ------------------------------------------------------------------------
- 2-15-94 W. Hatch added function compare_tstring()
- */
- #include <stdio.h>
- #include <string.h>
-
- class tstring{
- private:
- char *ts;
- public:
- tstring();
- ~tstring();
-
- char *Tstring();
- char *Tstring(char *s);
- void print(FILE *pf);
- void print();
- };
-
- void print_tstring(FILE *pf, void *t);
- int compare_tstring(void *a, void *b);
- #endif
-